Prizm Document Converter
Health Status

GET /Service/Current/Health

Returns the following HTTP status codes to reflect the overall health of the Prizm Services:

This URL is intended to provide a quick, easily parseable indication as to the health of Prizm Services. For more information about the current health, use GET /Service/Current/Info.

Http Method

GET

Resource URL

/PCCIS/V1/Service/Current/Health

Parameters

None

Request Body

None

Response Body

None

Example
Copy Code
GET http://localhost:18681/PCCIS/V1/Service/Current/Health
Example Response
Copy Code
200 OK

GET Service/Current/Info

This API returns a JSON object indicating the health of Prizm Services.

Http Method

GET

Resource URL

/PCCIS/V1/Service/Current/Info

Parameters

None

Request Body

None

Response Body

If successful, this method returns the following properties:

Property Name

Value

Description

serviceStatus

String

Status of Prizm Services.

  • "running"
  • "unhealthy"
  • "error"
  • "unavailable"
  • "unknown"

licenseStatus

String

Information about the PDC license.

  • "not licensed"
  • "licensed as ‘…’"

instances

list

Information about individual instances of Prizm Services. In the current version, only one instance will be returned.

Example
Copy Code
GET http://localhost:18681/PCCIS/V1/Service/Current/Info
Example Response
Copy Code
{
    "serviceStatus": "running",
    "licenseStatus": "licensed as ...",
    "instances": [
        {
            "serviceStatus": "running",
            "pccisVersion": "X.X.XXXX.X",
            "runtimeVersion": "X.X.XXXXX.XXXXX",
            "operatingSystem": "Microsoft Windows NT 6.1.7601 Service Pack 1",
            "startTime": "2014-11-21T22:21:39.7525625Z",
            "instanceId": "myhostname",
            "childServices": [
                {
                    "name": "PDC Imaging Proxy Server",
                    "serviceStatus": "running",
                    "version": "X.X.XXXX.XXXX"
                },
                {
                    "name": "PDC Imaging Conversion Service",
                    "serviceStatus": "running",
                    "version": "X.X.XXXX.XXXX"
                },
                {
                    "name": "PDC Raster Conversion Service",
                    "serviceStatus": "running",
                    "version": "X.X.XXXX.XXXX"
                },
                {
                    "name": "PDC Office Conversion Service",
                    "serviceStatus": "running",
                    "version": "X.X.XXXX.XXXX"
                }
            ]
        }
    ]
}

 

 

 


©2015. Accusoft Corporation. All Rights Reserved.

Send Feedback